home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / M / Mac gperf 1.9.cpt / Mac gperf 1.9 / src / old / Makefile < prev   
Encoding:
Makefile  |  1991-03-09  |  3.3 KB  |  76 lines  |  [TEXT/KAHL]

  1. # Copyright (C) 1989 Free Software Foundation, Inc.
  2. # written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  3. # This file is part of GNU GPERF.
  4. # GNU GPERF is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 1, or (at your option)
  7. # any later version.
  8. # GNU GPERF is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with GNU GPERF; see the file COPYING.  If not, write to
  14. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  15.  
  16. CC = cc
  17. CFLAGS= -O # -g -fstrength-reduce -finline-functions # gcc options 
  18. OBJS = options.o iterator.o main.o perfect.o keylist.o listnode.o xmalloc.o \
  19.        hashtable.o boolarray.o readline.o stderr.o version.o getopt.o
  20. SOURCES = options.c iterator.c main.c perfect.c keylist.c listnode.c xmalloc.c \
  21.        hashtable.c boolarray.c readline.c stderr.c version.c getopt.c
  22.  
  23. all: gperf
  24.  
  25. gperf: $(OBJS) 
  26.     $(CC) $(CFLAGS) -o gperf $(OBJS) $(LIBS)
  27.  
  28. clean: 
  29.     -rm -f *.o core *~ #*#
  30.  
  31. realclean: clean
  32.     -rm -f gperf
  33.  
  34. # dependencies
  35. # DO NOT DELETE THIS LINE -- mkdep uses it.
  36. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
  37.  
  38. boolarray.o: boolarray.c /usr/include/stdio.h boolarray.h prototype.h options.h
  39. boolarray.o: /usr/include/stdio.h prototype.h
  40. getopt.o: getopt.c /usr/include/stdio.h
  41. hashtable.o: hashtable.c /usr/include/stdio.h hashtable.h keylist.h
  42. hashtable.o: /usr/include/stdio.h listnode.h prototype.h prototype.h options.h
  43. hashtable.o: /usr/include/stdio.h prototype.h
  44. iterator.o: iterator.c /usr/include/stdio.h /usr/include/ctype.h iterator.h
  45. iterator.o: prototype.h
  46. keylist.o: keylist.c /usr/include/assert.h /usr/include/stdio.h options.h
  47. keylist.o: /usr/include/stdio.h prototype.h readline.h prototype.h keylist.h
  48. keylist.o: /usr/include/stdio.h listnode.h prototype.h hashtable.h keylist.h
  49. keylist.o: prototype.h stderr.h prototype.h /usr/include/varargs.h
  50. listnode.o: listnode.c /usr/include/stdio.h options.h /usr/include/stdio.h
  51. listnode.o: prototype.h listnode.h prototype.h stderr.h prototype.h
  52. listnode.o: /usr/include/varargs.h
  53. main.o: main.c /usr/include/stdio.h stderr.h prototype.h /usr/include/varargs.h
  54. main.o: options.h /usr/include/stdio.h prototype.h perfect.h prototype.h
  55. main.o: keylist.h /usr/include/stdio.h listnode.h prototype.h boolarray.h
  56. main.o: prototype.h
  57. options.o: options.c /usr/include/stdio.h /usr/include/assert.h options.h
  58. options.o: /usr/include/stdio.h prototype.h iterator.h prototype.h stderr.h
  59. options.o: prototype.h /usr/include/varargs.h
  60. perfect.o: perfect.c /usr/include/stdio.h /usr/include/assert.h
  61. perfect.o: /usr/include/ctype.h options.h /usr/include/stdio.h prototype.h
  62. perfect.o: perfect.h prototype.h keylist.h /usr/include/stdio.h listnode.h
  63. perfect.o: prototype.h boolarray.h prototype.h stderr.h prototype.h
  64. perfect.o: /usr/include/varargs.h
  65. readline.o: readline.c /usr/include/stdio.h readline.h prototype.h
  66. stderr.o: stderr.c /usr/include/stdio.h stderr.h prototype.h
  67. stderr.o: /usr/include/varargs.h
  68. version.o: version.c
  69. xmalloc.o: xmalloc.c /usr/include/stdio.h
  70.  
  71. # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
  72.